home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gsimpath.c < prev    next >
C/C++ Source or Header  |  1994-08-21  |  6KB  |  184 lines

  1. /* Copyright (C) 1989, 1992 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gsimpath.c */
  20. /* Image to outline conversion for Ghostscript library */
  21. #include "gx.h"
  22. #include "gserrors.h"
  23. #include "gsmatrix.h"
  24. #include "gsstate.h"
  25. #include "gspath.h"
  26.  
  27. /* Define the state of the conversion process. */
  28. typedef struct {
  29.     /* The following are set at the beginning of the conversion. */
  30.     gs_state *pgs;
  31.     const byte *data;        /* image data */
  32.     int width, height, raster;
  33.     /* The following are updated dynamically. */
  34.     int dx, dy;            /* X/Y increment of current run */
  35.     int count;            /* # of steps in current run */
  36. } status;
  37.  
  38. /* Define the scaling for the path tracer. */
  39. /* It must be even. */
  40. #define outline_scale 4
  41. /* Define the length of the short strokes for turning corners. */
  42. #define step 1
  43.  
  44. /* Forward declarations */
  45. private int near get_pixel(P3(const status *, int, int));
  46. private int near trace_from(P4(status *, int, int, int));
  47. private int near add_dxdy(P4(status *, int, int, int));
  48. #define add_deltas(s, dx, dy, n)\
  49.   if ( (code = add_dxdy(s, dx, dy, n)) < 0 ) return code
  50. /* Append an outline derived from an image to the current path. */
  51. int
  52. gs_imagepath(gs_state *pgs, int width, int height, const byte *data)
  53. {    status stat;
  54.     status *out = &stat;
  55.     int code, x, y;
  56.     /* Initialize the state. */
  57.     stat.pgs = pgs;
  58.     stat.data = data;
  59.     stat.width = width;
  60.     stat.height = height;
  61.     stat.raster = (width + 7) / 8;
  62.     /* Trace the cells to form an outline.  The trace goes in clockwise */
  63.     /* order, always starting by going west along a bottom edge. */
  64.     for ( y = height - 1; y >= 0; y-- )
  65.       for ( x = width - 1; x >= 0; x-- )
  66.        {    if ( get_pixel(out, x, y) && !get_pixel(out, x, y - 1) &&
  67.              (!get_pixel(out, x + 1, y) || get_pixel(out, x + 1, y - 1)) &&
  68.              !trace_from(out, x, y, 1)
  69.            )
  70.            {    /* Found a starting point */
  71.             stat.count = 0;
  72.             stat.dx = stat.dy = 0;
  73.             if ( (code = trace_from(out, x, y, 0)) < 0 )
  74.                 return code;
  75.             add_deltas(out, 0, 0, 1); /* force out last segment */
  76.             if ( (code = gs_closepath(pgs)) < 0 )
  77.                 return code;
  78.            }
  79.        }
  80.     return 0;
  81. }
  82.  
  83. /* Get a pixel from the data.  Return 0 if outside the image. */
  84. private int near
  85. get_pixel(register const status *out, int x, int y)
  86. {    if ( x < 0 || x >= out->width || y < 0 || y >= out->height )
  87.         return 0;
  88.     return (out->data[y * out->raster + (x >> 3)] >> (~x & 7)) & 1;
  89. }
  90.  
  91. /* Trace a path.  If detect is true, don't draw, just return 1 if we ever */
  92. /* encounter a starting point whose x,y follows that of the initial point */
  93. /* in x-then-y scan order; if detect is false, actually draw the outline. */
  94. private int near
  95. trace_from(register status *out, int x0, int y0, int detect)
  96. {    int x = x0, y = y0;
  97.     int dx = -1, dy = 0;        /* initially going west */
  98.     int part = 0;            /* how far along edge we are; */
  99.                     /* initialized only to pacify gcc */
  100.     int code;
  101.     if ( !detect )
  102.     {    part = (get_pixel(out, x + 1, y - 1) ?
  103.             outline_scale - step : step);
  104.         code = gs_moveto(out->pgs,
  105.                  x + 1 - part / (float)outline_scale,
  106.                  (float)y);
  107.         if ( code < 0 ) return code;
  108.     }
  109.     while ( 1 )
  110.        {    /* Relative to the current direction, */
  111.         /* -dy,dx is at +90 degrees (counter-clockwise); */
  112.         /* tx,ty is at +45 degrees; */
  113.         /* ty,-tx is at -45 degrees (clockwise); */
  114.         /* dy,-dx is at -90 degrees. */
  115.         int tx = dx - dy, ty = dy + dx;
  116.         if ( get_pixel(out, x + tx, y + ty) )
  117.         {    /* Cell at 45 degrees is full, */
  118.             /* go counter-clockwise. */
  119.             if ( !detect )
  120.             {    /* If this is a 90 degree corner set at a */
  121.                 /* 45 degree angle, avoid backtracking. */
  122.                 if ( out->dx == ty && out->dy == -tx )
  123.                 {
  124. #define half_scale (outline_scale / 2 - step)
  125.                     out->count -= half_scale;
  126.                     add_deltas(out, tx, ty, outline_scale / 2);
  127. #undef half_scale
  128.                 }
  129.                 else
  130.                 {    add_deltas(out, dx, dy, step - part);
  131.                     add_deltas(out, tx, ty, outline_scale - step);
  132.                 }
  133.                 part = outline_scale - step;
  134.             }
  135.             x += tx, y += ty;
  136.             dx = -dy, dy += tx;
  137.         }
  138.         else if ( !get_pixel(out, x + dx, y + dy) )
  139.         {    /* Cell straight ahead is empty, go clockwise. */
  140.             if ( !detect )
  141.             {    add_deltas(out, dx, dy, outline_scale - step - part);
  142.                 add_deltas(out, ty, -tx, step);
  143.                 part = step;
  144.             }
  145.             dx = dy, dy -= ty;
  146.         }
  147.         else
  148.         {    /* Neither of the above, go in same direction. */
  149.             if ( !detect )
  150.             {    add_deltas(out, dx, dy, outline_scale);
  151.             }
  152.             x += dx, y += dy;
  153.         }
  154.         if ( dx == -step && dy == 0 && !(tx == -step && ty == -step) )
  155.         {    /* We just turned a corner and are going west, */
  156.             /* so the previous pixel is a starting point pixel. */
  157.             if ( x == x0 && y == y0 ) return 0;
  158.             if ( detect && (y > y0 || (y == y0 && x > x0)) )
  159.                 return 1;
  160.         }
  161.        }
  162. }
  163.  
  164. /* Add a (dx, dy) pair to the path being formed. */
  165. /* Accumulate successive segments in the same direction. */
  166. private int near
  167. add_dxdy(register status *out, int dx, int dy, int count)
  168. {    if ( count != 0 )
  169.        {    if ( dx == out->dx && dy == out->dy )
  170.             out->count += count;
  171.         else
  172.            {    if ( out->count != 0 )
  173.                {    int code = gs_rlineto(out->pgs,
  174.                    out->dx * out->count / (float)outline_scale,
  175.                    out->dy * out->count / (float)outline_scale);
  176.                 if ( code < 0 ) return code;
  177.                }
  178.             out->dx = dx, out->dy = dy;
  179.             out->count = count;
  180.            }
  181.        }
  182.     return 0;
  183. }
  184.